Q3View_StartPicking
You can use theQ3View_StartPicking
function to start picking in a view.
TQ3Status Q3View_StartPicking ( TQ3ViewObject view, TQ3PickObject pick);
view
- A view.
pick
- A pick object.
DESCRIPTION
TheQ3View_StartPicking
function begins the process of picking in the view specified by theview
parameter, using the pick object specified by thepick
parameter. After callingQ3View_StartPicking
, you specify the model (for instance, by callingQ3Geometry_Submit
). When you have completely specified that model, you should callQ3View_EndPicking
to complete the picking operation. The renderer attached to the specified view might need to reprocess the model data, so you should always callQ3View_StartPicking
andQ3View_EndPicking
in a picking loop.SPECIAL CONSIDERATIONS
You should not callQ3View_StartPicking
while picking is already occurring.